home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 201-220 / scopedisk214 / skeleton / skeleton.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  701b  |  42 lines

  1. #ifndef SKELETON_H
  2. #define SKELETON_H
  3.  
  4. /*
  5.  * Skeleton.h - a public header for skeleton class
  6.  *
  7.  * Public Domain.
  8.  *
  9.  * Christian E. Hopps.
  10.  *
  11.  */
  12.  
  13. #ifndef INTUITION_CLASSES_H
  14. #include <intuition/classes.h>
  15. #endif
  16.  
  17. #ifndef INTUITION_CLASSUSR_H
  18. #include <intuition/classusr.h>
  19. #endif
  20.  
  21. #ifndef UTILITY_TAGITEM_H
  22. #include <utility/tagitem.h>
  23. #endif
  24.  
  25. /*
  26.  * Tag attributes for skeleton class.
  27.  */
  28.  
  29. /* Note: valid User tags are TAG_USER + 0x0001 thru */
  30. /* TAG_USER + 0x9999 until "further notice." (C=)   */
  31.  
  32. #define SKA_Dummy (TAG_USER + 0x0000)
  33. #define SKA_NoOp  (SKA_Dummy + 0x1)
  34.  
  35. /*
  36.  * Public functions for skeleton Class.
  37.  *
  38.  */
  39. Class * Skeleton_init( void );
  40. ULONG   Skeleton_free( Class * );
  41.  
  42. #endif